home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / misc-part1 / 1287 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  2.7 KB

  1. Path: soap.news.pipex.net!pipex!usenet
  2. From: m.hendry@dial.pipex.com (Mathew Hendry)
  3. Newsgroups: comp.sys.amiga.misc
  4. Subject: Re: Re-mounting DF0:
  5. Date: Sat, 13 Jan 96 18:50:05
  6. Organization: Private node.
  7. Distribution: world
  8. Message-ID: <19960113.41B940.109E8@an196.du.pipex.com>
  9. References: <4d0rtg$dei@bsdi002.britain.eu.net> <Pine.LNX.3.91.960111163128.2563B-100000@mail.inhb.co.nz> <4d7egv$n70@news2.delphi.com>
  10. NNTP-Posting-Host: an196.du.pipex.com
  11. X-Newsreader: TIN [AMIGA 1.3 950726BETA PL0]
  12.  
  13. TAOBERLY@DELPHI.COM (TAOBERLY@news.delphi.com) wrote:
  14. : >> twelve fake floppies mounted from your hard disk).  I can 'Assign DF0:
  15. : >> dismount', 'Mount HF0:' and 'Assign DF0: HF0:' so that the CD is fooled
  16. : >> into decompressing to HF0:, but I don't know how to remount DF0: when
  17. : >> I'm finished without rebooting as it doesn't seem to have a mountlist
  18. : >> in Devs:DOSdrivers.  Can anyone shed any light on how to do this or
  19. : >> tell me where DF0: is mounted in the startup sequence?
  20. : > Its not, its in the ROM.
  21. : But does anybody know if there is a way to re-mount them without rebooting?  
  22. : Sometimes I forget and boot with my external DF1: turned off via the game
  23. : switch on the back, and it would be cool if there was a way to easily get
  24. : it back.
  25.  
  26. I'm not sure if you can do that. However, if you have simply
  27. "Assign DF1: DISMOUNT"ed, the procedure below seems to work okay.
  28.  
  29. Use the following mountlist, saving it as DEVS:Mountlist.DF1 or somesuch:
  30.  
  31. --- CUT ---
  32.  
  33. DF1:
  34.    Device         = trackdisk.device
  35.    Unit           = 1
  36.    Priority       = 10
  37.    Flags          = 0x0
  38.    Surfaces       = 2
  39.    BlockSize      = 512
  40.    BlocksPerTrack = 11
  41.    Reserved       = 2
  42.    Interleave     = 0
  43.    LowCyl         = 0
  44.    HighCyl        = 79
  45.    StackSize      = 5000
  46.    Buffers        = 5
  47.    BufMemType     = 1
  48.    Mount          = 1
  49.    GlobVec        = -1
  50.    MaxTransfer    = 2097152
  51.    Mask           = 0x7ffffffe
  52.  
  53. #
  54.  
  55. --- CUT ---
  56.  
  57. Mount it with "Mount DF1: FROM DEVS:Mountlist.DF1"
  58.  
  59. You can easily create similar mountlists for the other floppy drives - change
  60. the volume name to "DFx:" and the "Unit = 1" line to "Unit = x" where 0<=x<=3.
  61.  
  62. BTW, I'm not sure if all the settings in that mountlist are absolutely
  63. correct - I converted it from a PFS mountlist. It seems to work on my machine,
  64. though, for example:
  65.  
  66. 10.Kinski:> Assign DF1: DISMOUNT
  67. 10.Kinski:> Dir DF1:
  68. ["Please insert volume DF1: in any drive" requester appears - select "Cancel"]
  69. Could not get information for DF1:
  70. device (or volume) is not mounted
  71. 10.Kinski:> Mount DF1: FROM DEVS:Mountlist.DF1
  72. 10.Kinski:> Dir DF1:
  73.      s (dir)
  74.   Amiga_E_v3.1i.DMS                Amiga_E_v3.1i_extras.DMS
  75.   CUMenu.info                      Disk.info
  76.   EModules.DMS                     System-Configuration
  77.   TimeForBed
  78. 10.Kinski:>
  79.  
  80. etc...
  81.  
  82. -- Mat.
  83.